home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_12_11 / pjp / endl.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-10-02  |  224 b   |  14 lines

  1. -------------------- Listing 11: The file endl.c ------------
  2.  
  3. // endl -- endl(ostream&)
  4. #include <ostream>
  5.  
  6. ostream& endl(ostream& os)
  7.     {    // terminate output line
  8.     os.put('\n');
  9.     os.flush();
  10.     return (os);
  11.     }
  12.  
  13.  
  14.